2025-07-28 10:47:13,474 [ 233890 ] INFO : ClickHouse root is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse (runner:53, check_args_and_update_paths) 2025-07-28 10:47:13,474 [ 233890 ] INFO : Cases dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:79, check_args_and_update_paths) 2025-07-28 10:47:13,474 [ 233890 ] INFO : utils dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/utils (runner:90, check_args_and_update_paths) 2025-07-28 10:47:13,474 [ 233890 ] INFO : base_configs_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/programs/server, binary: /home/ubuntu/_work/_temp/test/build/clickhouse, cases_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:92, check_args_and_update_paths) clickhouse_integration_tests_volume Running pytest container as: 'docker run --rm --name clickhouse_integration_tests_mtr0pn --privileged --dns-search='.' --memory=30709030912 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel0_1.jsonl --report-log-exclude-logs-on-passed-tests test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup 'test_cow_policy/test.py::test_cow_policy[cow_policy_multi_disk]' 'test_cow_policy/test.py::test_cow_policy[cow_policy_multi_volume]' -vvv " altinityinfra/integration-tests-runner:226bfaf75ac1 '. Start tests ============================= test session starts ============================== platform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.5.0 -- /usr/bin/python3 cachedir: .pytest_cache Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket= rootdir: /ClickHouse/tests/integration configfile: pytest.ini plugins: timeout-2.3.1, repeat-0.9.3, order-1.0.0, reportlog-0.4.0, xdist-3.5.0, random-order-1.1.1 timeout: 900.0s timeout method: signal timeout func_only: False created: 10/10 workers 10 workers [3 items] scheduling tests via LoadFileScheduling test_cow_policy/test.py::test_cow_policy[cow_policy_multi_disk] test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup [gw1] [ 33%] FAILED test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup [gw0] [ 66%] FAILED test_cow_policy/test.py::test_cow_policy[cow_policy_multi_disk] test_cow_policy/test.py::test_cow_policy[cow_policy_multi_volume] [gw0] [100%] FAILED test_cow_policy/test.py::test_cow_policy[cow_policy_multi_volume] =================================== FAILURES =================================== _________________________ test_shutdown_cancels_backup _________________________ [gw1] linux -- Python 3.10.12 /usr/bin/python3 def test_shutdown_cancels_backup(): > with NoTrashChecker() as no_trash_checker: test_backup_restore_on_cluster/test_cancel_backup.py:556: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = type = None, value = None, traceback = None def __exit__(self, type, value, traceback): list_of_znodes = set( node1.query( "SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups' " + "AND NOT (name == 'alive_tracker')" ).splitlines() ) new_znodes = list_of_znodes.difference(self.__previous_list_of_znodes) if new_znodes: print(f"Found nodes in ZooKeeper: {new_znodes}") for node in new_znodes: print( f"Nodes in '/clickhouse/backups/{node}':\n" + node1.query( f"SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups/{node}'" ) ) print( f"Nodes in '/clickhouse/backups/{node}/stage':\n" + node1.query( f"SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups/{node}/stage'" ) ) if self.check_zookeeper: assert new_znodes == set() list_of_backups = set( os.listdir(os.path.join(node1.cluster.instances_dir, "backups")) ) new_backups = list_of_backups.difference(self.__previous_list_of_backups) unfinished_backups = set( backup for backup in new_backups if not os.path.exists( os.path.join(node1.cluster.instances_dir, "backups", backup, ".backup") ) ) new_backups = set( backup for backup in new_backups if backup not in unfinished_backups ) if new_backups: print(f"Found new backups: {new_backups}") if unfinished_backups: print(f"Found unfinished backups: {unfinished_backups}") assert new_backups == set(self.expect_backups) assert unfinished_backups.difference(self.allow_unfinished_backups) == set() all_errors = set() start_time = time.strftime( "%Y-%m-%d %H:%M:%S", self.__start_time_for_collecting_errors ) for node in nodes: errors_query_result = node.query( "SELECT name FROM system.errors WHERE last_error_time >= toDateTime('" + start_time + "') " + "AND NOT ((name == 'KEEPER_EXCEPTION') AND (last_error_message LIKE '%Fault injection%')) " + "AND NOT (name == 'NO_ELEMENTS_IN_CONFIG')" ) errors = errors_query_result.splitlines() if errors: print(f"{get_node_name(node)}: Found errors: {errors}") print( node.query( "SELECT name, last_error_message FROM system.errors WHERE last_error_time >= toDateTime('" + start_time + "')" ) ) for error in errors: > assert (error in self.expect_errors) or (error in self.allow_errors) E AssertionError: assert ('NETLINK_ERROR' in ['QUERY_WAS_CANCELLED'] or 'NETLINK_ERROR' in []) E + where ['QUERY_WAS_CANCELLED'] = .expect_errors E + and [] = .allow_errors test_backup_restore_on_cluster/test_cancel_backup.py:394: AssertionError ---------------------------- Captured stdout setup ----------------------------- Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml ------------------------------ Captured log setup ------------------------------ 2025-07-28 10:47:20.166000 [ 658 ] DEBUG : Command:[docker ps | wc -l] (cluster.py:121, run_and_check) 2025-07-28 10:47:20.193000 [ 658 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-28 10:47:20.194000 [ 658 ] DEBUG : No running containers (conftest.py:95, cleanup_environment) 2025-07-28 10:47:20.194000 [ 658 ] DEBUG : Pruning Docker networks (conftest.py:97, cleanup_environment) 2025-07-28 10:47:20.194000 [ 658 ] DEBUG : Command:[docker network prune --force] (cluster.py:121, run_and_check) 2025-07-28 10:47:20.222000 [ 658 ] DEBUG : Command:[sysctl net.ipv4.ip_local_port_range='55000 65535'] (cluster.py:121, run_and_check) 2025-07-28 10:47:20.226000 [ 658 ] DEBUG : Stdout:net.ipv4.ip_local_port_range = 55000 65535 (cluster.py:145, run_and_check) 2025-07-28 10:47:20.226000 [ 658 ] INFO : Running tests in /ClickHouse/tests/integration/test_backup_restore_on_cluster/test_cancel_backup.py (cluster.py:2738, start) 2025-07-28 10:47:20.227000 [ 658 ] DEBUG : Cluster start called. is_up=False (cluster.py:2745, start) 2025-07-28 10:47:20.255000 [ 658 ] DEBUG : Docker networks for project roottestbackuprestoreonclustercancelbackup-gw1 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2025-07-28 10:47:20.282000 [ 658 ] DEBUG : Docker containers for project roottestbackuprestoreonclustercancelbackup-gw1 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2025-07-28 10:47:20.311000 [ 658 ] DEBUG : Docker volumes for project roottestbackuprestoreonclustercancelbackup-gw1 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2025-07-28 10:47:20.312000 [ 658 ] DEBUG : Cleanup called (cluster.py:851, cleanup) 2025-07-28 10:47:20.339000 [ 658 ] DEBUG : Docker networks for project roottestbackuprestoreonclustercancelbackup-gw1 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2025-07-28 10:47:20.366000 [ 658 ] DEBUG : Docker containers for project roottestbackuprestoreonclustercancelbackup-gw1 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2025-07-28 10:47:20.394000 [ 658 ] DEBUG : Docker volumes for project roottestbackuprestoreonclustercancelbackup-gw1 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2025-07-28 10:47:20.394000 [ 658 ] DEBUG : Command:[docker container list --all --filter name='^/roottestbackuprestoreonclustercancelbackup-gw1-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2025-07-28 10:47:20.423000 [ 658 ] DEBUG : Unstopped containers: {} (cluster.py:865, cleanup) 2025-07-28 10:47:20.423000 [ 658 ] DEBUG : No running containers for project: roottestbackuprestoreonclustercancelbackup-gw1 (cluster.py:879, cleanup) 2025-07-28 10:47:20.423000 [ 658 ] DEBUG : Trying to prune unused networks... (cluster.py:885, cleanup) 2025-07-28 10:47:20.450000 [ 658 ] DEBUG : Trying to prune unused images... (cluster.py:901, cleanup) 2025-07-28 10:47:20.450000 [ 658 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2025-07-28 10:47:20.491000 [ 658 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2025-07-28 10:47:20.491000 [ 658 ] DEBUG : Images pruned (cluster.py:904, cleanup) 2025-07-28 10:47:20.491000 [ 658 ] DEBUG : Trying to prune unused volumes... (cluster.py:910, cleanup) 2025-07-28 10:47:20.491000 [ 658 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2025-07-28 10:47:20.524000 [ 658 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-28 10:47:20.524000 [ 658 ] DEBUG : Volumes pruned: 1 (cluster.py:915, cleanup) 2025-07-28 10:47:20.524000 [ 658 ] DEBUG : Setup directory for instance: node1 (cluster.py:2758, start) 2025-07-28 10:47:20.525000 [ 658 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4628, create_dir) 2025-07-28 10:47:20.526000 [ 658 ] DEBUG : Create directory for common tests configuration (cluster.py:4633, create_dir) 2025-07-28 10:47:20.526000 [ 658 ] DEBUG : Copy common configuration from helpers (cluster.py:4653, create_dir) 2025-07-28 10:47:20.527000 [ 658 ] DEBUG : Generate and write macros file (cluster.py:4705, create_dir) 2025-07-28 10:47:20.527000 [ 658 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/backups_disk.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/cluster.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/lesser_timeouts.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/slow_backups.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/shutdown_cancel_backups.xml'] to /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/configs/config.d (cluster.py:4741, create_dir) 2025-07-28 10:47:20.528000 [ 658 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/database (cluster.py:4758, create_dir) 2025-07-28 10:47:20.528000 [ 658 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/logs (cluster.py:4769, create_dir) 2025-07-28 10:47:20.529000 [ 658 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4850, create_dir) 2025-07-28 10:47:20.529000 [ 658 ] INFO : external_dir_abs_path=/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/backups (cluster.py:4879, create_dir) 2025-07-28 10:47:20.529000 [ 658 ] DEBUG : Setup directory for instance: node2 (cluster.py:2758, start) 2025-07-28 10:47:20.530000 [ 658 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4628, create_dir) 2025-07-28 10:47:20.530000 [ 658 ] DEBUG : Create directory for common tests configuration (cluster.py:4633, create_dir) 2025-07-28 10:47:20.530000 [ 658 ] DEBUG : Copy common configuration from helpers (cluster.py:4653, create_dir) 2025-07-28 10:47:20.531000 [ 658 ] DEBUG : Generate and write macros file (cluster.py:4705, create_dir) 2025-07-28 10:47:20.531000 [ 658 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/backups_disk.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/cluster.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/lesser_timeouts.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/slow_backups.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/shutdown_cancel_backups.xml'] to /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/configs/config.d (cluster.py:4741, create_dir) 2025-07-28 10:47:20.532000 [ 658 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/database (cluster.py:4758, create_dir) 2025-07-28 10:47:20.532000 [ 658 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/logs (cluster.py:4769, create_dir) 2025-07-28 10:47:20.533000 [ 658 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4850, create_dir) 2025-07-28 10:47:20.533000 [ 658 ] INFO : external_dir_abs_path=/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/backups (cluster.py:4879, create_dir) 2025-07-28 10:47:20.533000 [ 658 ] DEBUG : Env {'ASAN_OPTIONS': 'use_sigaltstack=0', 'TSAN_OPTIONS': 'use_sigaltstack=0', 'CLICKHOUSE_WATCHDOG_ENABLE': '0', 'CLICKHOUSE_NATS_TLS_SECURE': '0', 'LLVM_PROFILE_FILE': '/var/lib/clickhouse/server_%h_%p_%m.profraw', 'keeper_binary': '/clickhouse', 'keeper_cmd_prefix': 'clickhouse keeper', 'image': 'altinityinfra/integration-test:5ccda723c1fc', 'user': '0', 'keeper_fs': 'bind', 'keeper_logs_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/log', 'keeper_config_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/config', 'keeper_db_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/coordination', 'keeper_logs_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/log', 'keeper_config_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/config', 'keeper_db_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/coordination', 'keeper_logs_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/log', 'keeper_config_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/config', 'keeper_db_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/coordination'} stored in /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env (cluster.py:96, _create_env_file) 2025-07-28 10:47:20.534000 [ 658 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-07-28 10:47:20.534000 [ 658 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-07-28 10:47:20.534000 [ 658 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-07-28 10:47:20.534000 [ 658 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-07-28 10:47:20.547000 [ 658 ] DEBUG : http://localhost:None "GET /version HTTP/1.1" 200 826 (connectionpool.py:547, _make_request) 2025-07-28 10:47:20.548000 [ 658 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --project-name roottestbackuprestoreonclustercancelbackup-gw1 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/docker-compose.yml pull] (cluster.py:121, run_and_check) 2025-07-28 10:47:30.972000 [ 658 ] DEBUG : Stderr: zoo1 Skipped - Image is already being pulled by zoo3 (cluster.py:147, run_and_check) 2025-07-28 10:47:30.973000 [ 658 ] DEBUG : Stderr: node2 Skipped - Image is already being pulled by zoo3 (cluster.py:147, run_and_check) 2025-07-28 10:47:30.973000 [ 658 ] DEBUG : Stderr: node1 Skipped - Image is already being pulled by zoo3 (cluster.py:147, run_and_check) 2025-07-28 10:47:30.973000 [ 658 ] DEBUG : Stderr: zoo2 Skipped - Image is already being pulled by zoo3 (cluster.py:147, run_and_check) 2025-07-28 10:47:30.973000 [ 658 ] DEBUG : Stderr: zoo3 Pulling (cluster.py:147, run_and_check) 2025-07-28 10:47:30.973000 [ 658 ] DEBUG : Stderr: zoo3 Pulled (cluster.py:147, run_and_check) 2025-07-28 10:47:30.974000 [ 658 ] DEBUG : Setup ZooKeeper (cluster.py:2799, start) 2025-07-28 10:47:30.974000 [ 658 ] DEBUG : Creating internal ZooKeeper dirs: ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/coordination', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/coordination', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/coordination'] (cluster.py:2800, start) 2025-07-28 10:47:30.976000 [ 658 ] DEBUG : Command:[docker compose --project-name roottestbackuprestoreonclustercancelbackup-gw1 --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --verbose up -d] (cluster.py:121, run_and_check) 2025-07-28 10:47:31.912000 [ 658 ] DEBUG : Stderr:time="2025-07-28T10:47:31Z" level=trace msg="Docker Desktop integration not enabled" (cluster.py:147, run_and_check) 2025-07-28 10:47:31.912000 [ 658 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup-gw1_default Creating (cluster.py:147, run_and_check) 2025-07-28 10:47:31.912000 [ 658 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup-gw1_default Created (cluster.py:147, run_and_check) 2025-07-28 10:47:31.912000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Creating (cluster.py:147, run_and_check) 2025-07-28 10:47:31.912000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Creating (cluster.py:147, run_and_check) 2025-07-28 10:47:31.912000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Creating (cluster.py:147, run_and_check) 2025-07-28 10:47:31.912000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Created (cluster.py:147, run_and_check) 2025-07-28 10:47:31.913000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Created (cluster.py:147, run_and_check) 2025-07-28 10:47:31.913000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Created (cluster.py:147, run_and_check) 2025-07-28 10:47:31.913000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Starting (cluster.py:147, run_and_check) 2025-07-28 10:47:31.913000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Starting (cluster.py:147, run_and_check) 2025-07-28 10:47:31.913000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Starting (cluster.py:147, run_and_check) 2025-07-28 10:47:31.913000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Started (cluster.py:147, run_and_check) 2025-07-28 10:47:31.913000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Started (cluster.py:147, run_and_check) 2025-07-28 10:47:31.913000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Started (cluster.py:147, run_and_check) 2025-07-28 10:47:31.913000 [ 658 ] DEBUG : Stderr:time="2025-07-28T10:47:31Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2025-07-28 10:47:31.913000 [ 658 ] DEBUG : Stderr:time="2025-07-28T10:47:31Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2025-07-28 10:47:31.913000 [ 658 ] DEBUG : Wait ZooKeeper to start (cluster.py:2436, wait_zookeeper_to_start) 2025-07-28 10:47:31.913000 [ 658 ] DEBUG : get_instance_ip instance_name=zoo1 (cluster.py:2005, get_instance_ip) 2025-07-28 10:47:31.916000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:31.916000 [ 658 ] DEBUG : get_kazoo_client: zoo1, ip:172.16.2.3, port:2181, use_ssl:False (cluster.py:3312, get_kazoo_client) 2025-07-28 10:47:31.918000 [ 658 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 10:47:31.919000 [ 658 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-28 10:47:31.993000 [ 658 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 10:47:31.994000 [ 658 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-28 10:47:32.167000 [ 658 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 10:47:32.168000 [ 658 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-28 10:47:32.411000 [ 658 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 10:47:32.412000 [ 658 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-28 10:47:32.909000 [ 658 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 10:47:32.910000 [ 658 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-28 10:47:34.037000 [ 658 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 10:47:34.038000 [ 658 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-28 10:47:36.121000 [ 658 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 10:47:36.122000 [ 658 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2025-07-28 10:47:36.127000 [ 658 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2025-07-28 10:47:36.127000 [ 658 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2025-07-28 10:47:36.128000 [ 658 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2025-07-28 10:47:36.129000 [ 658 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2025-07-28 10:47:36.132000 [ 658 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2025-07-28 10:47:36.132000 [ 658 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2025-07-28 10:47:36.132000 [ 658 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2025-07-28 10:47:36.233000 [ 658 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2025-07-28 10:47:36.233000 [ 658 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2025-07-28 10:47:36.233000 [ 658 ] DEBUG : get_instance_ip instance_name=zoo2 (cluster.py:2005, get_instance_ip) 2025-07-28 10:47:36.237000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:36.237000 [ 658 ] DEBUG : get_kazoo_client: zoo2, ip:172.16.2.2, port:2181, use_ssl:False (cluster.py:3312, get_kazoo_client) 2025-07-28 10:47:36.239000 [ 658 ] INFO : Connecting to 172.16.2.2(172.16.2.2):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 10:47:36.240000 [ 658 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2025-07-28 10:47:36.244000 [ 658 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2025-07-28 10:47:36.245000 [ 658 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2025-07-28 10:47:36.246000 [ 658 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2025-07-28 10:47:36.247000 [ 658 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2025-07-28 10:47:36.249000 [ 658 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2025-07-28 10:47:36.249000 [ 658 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2025-07-28 10:47:36.249000 [ 658 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2025-07-28 10:47:36.349000 [ 658 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2025-07-28 10:47:36.350000 [ 658 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2025-07-28 10:47:36.350000 [ 658 ] DEBUG : get_instance_ip instance_name=zoo3 (cluster.py:2005, get_instance_ip) 2025-07-28 10:47:36.353000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:36.354000 [ 658 ] DEBUG : get_kazoo_client: zoo3, ip:172.16.2.4, port:2181, use_ssl:False (cluster.py:3312, get_kazoo_client) 2025-07-28 10:47:36.356000 [ 658 ] INFO : Connecting to 172.16.2.4(172.16.2.4):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 10:47:36.356000 [ 658 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2025-07-28 10:47:36.359000 [ 658 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2025-07-28 10:47:36.359000 [ 658 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2025-07-28 10:47:36.360000 [ 658 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2025-07-28 10:47:36.361000 [ 658 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2025-07-28 10:47:36.363000 [ 658 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2025-07-28 10:47:36.363000 [ 658 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2025-07-28 10:47:36.363000 [ 658 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2025-07-28 10:47:36.441000 [ 658 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2025-07-28 10:47:36.441000 [ 658 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2025-07-28 10:47:36.442000 [ 658 ] DEBUG : All instances of ZooKeeper started: ('zoo1', 'zoo2', 'zoo3') (cluster.py:2452, wait_zookeeper_nodes_to_start) 2025-07-28 10:47:36.442000 [ 658 ] DEBUG : ('Trying to create ClickHouse instance by command %s', 'docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --project-name roottestbackuprestoreonclustercancelbackup-gw1 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/docker-compose.yml up -d --no-recreate') (cluster.py:3139, start) 2025-07-28 10:47:36.442000 [ 658 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --project-name roottestbackuprestoreonclustercancelbackup-gw1 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/docker-compose.yml up -d --no-recreate] (cluster.py:121, run_and_check) 2025-07-28 10:47:37.005000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Running (cluster.py:147, run_and_check) 2025-07-28 10:47:37.005000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Running (cluster.py:147, run_and_check) 2025-07-28 10:47:37.005000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Running (cluster.py:147, run_and_check) 2025-07-28 10:47:37.005000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Creating (cluster.py:147, run_and_check) 2025-07-28 10:47:37.006000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Creating (cluster.py:147, run_and_check) 2025-07-28 10:47:37.006000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Created (cluster.py:147, run_and_check) 2025-07-28 10:47:37.006000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Created (cluster.py:147, run_and_check) 2025-07-28 10:47:37.006000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Starting (cluster.py:147, run_and_check) 2025-07-28 10:47:37.006000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Starting (cluster.py:147, run_and_check) 2025-07-28 10:47:37.007000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Started (cluster.py:147, run_and_check) 2025-07-28 10:47:37.007000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Started (cluster.py:147, run_and_check) 2025-07-28 10:47:37.007000 [ 658 ] DEBUG : ClickHouse instance created (cluster.py:3147, start) 2025-07-28 10:47:37.007000 [ 658 ] DEBUG : get_instance_ip instance_name=node1 (cluster.py:2005, get_instance_ip) 2025-07-28 10:47:37.011000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:37.012000 [ 658 ] DEBUG : get_instance_ip instance_name=node1 (cluster.py:2015, get_instance_global_ipv6) 2025-07-28 10:47:37.015000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:37.016000 [ 658 ] DEBUG : Waiting for ClickHouse start in node1, ip: 172.16.2.5... (cluster.py:3155, start) 2025-07-28 10:47:37.018000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:37.022000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/02372a843db59d882bbfdc28bf7ba39e8b5a189963aaab0206aa84d9e7410c0f/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:37.126000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/02372a843db59d882bbfdc28bf7ba39e8b5a189963aaab0206aa84d9e7410c0f/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:37.230000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/02372a843db59d882bbfdc28bf7ba39e8b5a189963aaab0206aa84d9e7410c0f/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:37.334000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/02372a843db59d882bbfdc28bf7ba39e8b5a189963aaab0206aa84d9e7410c0f/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:37.438000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/02372a843db59d882bbfdc28bf7ba39e8b5a189963aaab0206aa84d9e7410c0f/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:37.542000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/02372a843db59d882bbfdc28bf7ba39e8b5a189963aaab0206aa84d9e7410c0f/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:37.646000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/02372a843db59d882bbfdc28bf7ba39e8b5a189963aaab0206aa84d9e7410c0f/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:37.647000 [ 658 ] DEBUG : ClickHouse node1 started (cluster.py:3159, start) 2025-07-28 10:47:37.647000 [ 658 ] DEBUG : get_instance_ip instance_name=node2 (cluster.py:2005, get_instance_ip) 2025-07-28 10:47:37.649000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:37.650000 [ 658 ] DEBUG : get_instance_ip instance_name=node2 (cluster.py:2015, get_instance_global_ipv6) 2025-07-28 10:47:37.652000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:37.653000 [ 658 ] DEBUG : Waiting for ClickHouse start in node2, ip: 172.16.2.6... (cluster.py:3155, start) 2025-07-28 10:47:37.655000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:37.658000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/containers/34a2e653348225e89bfd4d2880d28b4f936da94d87c9422e1be334630a65bdf9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:37.659000 [ 658 ] DEBUG : ClickHouse node2 started (cluster.py:3159, start) ----------------------------- Captured stdout call ----------------------------- Using node2 as initiator Sleeping 2.369751516958469 seconds Waiting for number of system processes = 1+ Got 1 system processes for backup 75ee3ae268ac4e62989320e28022a26f after waiting 0 seconds node1: Restarting... node1: Restarted Waiting for number of system processes = 0 Got 0 system processes for backup 75ee3ae268ac4e62989320e28022a26f after waiting 0 seconds node1: Found errors: ['NETLINK_ERROR'] NO_ELEMENTS_IN_CONFIG Certificate file is not set. NETLINK_ERROR Can\'t receive Netlink response: error -2 ------------------------------ Captured log call ------------------------------- 2025-07-28 10:47:38.663000 [ 658 ] DEBUG : Executing query SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups' AND NOT (name == 'alive_tracker') on node1 (cluster.py:3648, query) 2025-07-28 10:47:38.779000 [ 658 ] DEBUG : Executing query CREATE TABLE tbl ON CLUSTER 'cluster' (x UInt64) ENGINE=ReplicatedMergeTree('/clickhouse/tables/tbl/', '{replica}') ORDER BY tuple() PARTITION BY x%10 on node1 (cluster.py:3648, query) 2025-07-28 10:47:38.995000 [ 658 ] DEBUG : Executing query INSERT INTO tbl SELECT number FROM numbers(10) on node1 (cluster.py:3648, query) 2025-07-28 10:47:39.211000 [ 658 ] DEBUG : Executing query BACKUP TABLE tbl ON CLUSTER 'cluster' TO Disk('backups', '75ee3ae268ac4e62989320e28022a26f') SETTINGS id='75ee3ae268ac4e62989320e28022a26f' ASYNC on node2 (cluster.py:3648, query) 2025-07-28 10:47:39.327000 [ 658 ] DEBUG : Executing query SELECT status FROM system.backups WHERE id='75ee3ae268ac4e62989320e28022a26f' on node2 (cluster.py:3648, query) 2025-07-28 10:47:39.443000 [ 658 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%75ee3ae268ac4e62989320e28022a26f%') on node2 (cluster.py:3648, query) 2025-07-28 10:47:41.931000 [ 658 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%75ee3ae268ac4e62989320e28022a26f%') on node1 (cluster.py:3648, query) 2025-07-28 10:47:42.047000 [ 658 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:True cmd: ['bash', '-c', 'ps -C clickhouse'] (cluster.py:2051, exec_in_container) 2025-07-28 10:47:42.047000 [ 658 ] DEBUG : Command:[docker exec -u root roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps -C clickhouse] (cluster.py:121, run_and_check) 2025-07-28 10:47:42.119000 [ 658 ] DEBUG : Stdout: PID TTY TIME CMD (cluster.py:145, run_and_check) 2025-07-28 10:47:42.119000 [ 658 ] DEBUG : Stdout: 10 ? 00:00:01 clickhouse (cluster.py:145, run_and_check) 2025-07-28 10:47:42.119000 [ 658 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', 'pkill clickhouse'] (cluster.py:2051, exec_in_container) 2025-07-28 10:47:42.119000 [ 658 ] DEBUG : Command:[docker exec -u root roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c pkill clickhouse] (cluster.py:121, run_and_check) 2025-07-28 10:47:42.189000 [ 658 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2025-07-28 10:47:42.190000 [ 658 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-28 10:47:42.259000 [ 658 ] DEBUG : Stdout:10 (cluster.py:145, run_and_check) 2025-07-28 10:47:43.261000 [ 658 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2025-07-28 10:47:43.261000 [ 658 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-28 10:47:43.335000 [ 658 ] DEBUG : Stdout:10 (cluster.py:145, run_and_check) 2025-07-28 10:47:44.337000 [ 658 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2025-07-28 10:47:44.337000 [ 658 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-28 10:47:44.410000 [ 658 ] DEBUG : Stdout:10 (cluster.py:145, run_and_check) 2025-07-28 10:47:45.411000 [ 658 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2025-07-28 10:47:45.411000 [ 658 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-28 10:47:45.479000 [ 658 ] DEBUG : Stdout:10 (cluster.py:145, run_and_check) 2025-07-28 10:47:46.480000 [ 658 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2025-07-28 10:47:46.481000 [ 658 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-28 10:47:46.551000 [ 658 ] DEBUG : Stdout:10 (cluster.py:145, run_and_check) 2025-07-28 10:47:47.552000 [ 658 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2025-07-28 10:47:47.552000 [ 658 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-28 10:47:47.623000 [ 658 ] DEBUG : Stdout:10 (cluster.py:145, run_and_check) 2025-07-28 10:47:48.624000 [ 658 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2025-07-28 10:47:48.625000 [ 658 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-28 10:47:48.696000 [ 658 ] DEBUG : Stdout:10 (cluster.py:145, run_and_check) 2025-07-28 10:47:49.697000 [ 658 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2025-07-28 10:47:49.698000 [ 658 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-28 10:47:49.772000 [ 658 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2025-07-28 10:47:49.772000 [ 658 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-28 10:47:49.848000 [ 658 ] DEBUG : No clickhouse process running. Start new one. (cluster.py:4014, start_clickhouse) 2025-07-28 10:47:49.851000 [ 658 ] DEBUG : http://localhost:None "POST /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node1-1/exec HTTP/1.1" 201 74 (connectionpool.py:547, _make_request) 2025-07-28 10:47:49.889000 [ 658 ] DEBUG : http://localhost:None "POST /v1.46/exec/08706d530efaaa12691dd1d8382c7e26701f4e86afb6c3bdd70a38820ae8eb86/start HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2025-07-28 10:47:49.892000 [ 658 ] DEBUG : http://localhost:None "GET /v1.46/exec/08706d530efaaa12691dd1d8382c7e26701f4e86afb6c3bdd70a38820ae8eb86/json HTTP/1.1" 200 585 (connectionpool.py:547, _make_request) 2025-07-28 10:47:50.894000 [ 658 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2025-07-28 10:47:50.894000 [ 658 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-28 10:47:50.968000 [ 658 ] DEBUG : Stdout:829 (cluster.py:145, run_and_check) 2025-07-28 10:47:50.968000 [ 658 ] DEBUG : Clickhouse process running. (cluster.py:4028, start_clickhouse) 2025-07-28 10:47:50.969000 [ 658 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node1-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2025-07-28 10:47:50.969000 [ 658 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node1-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2025-07-28 10:47:51.040000 [ 658 ] DEBUG : Stdout:829 (cluster.py:145, run_and_check) 2025-07-28 10:47:51.041000 [ 658 ] DEBUG : Executing query select 20 on node1 (cluster.py:3648, query) 2025-07-28 10:47:51.157000 [ 658 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%75ee3ae268ac4e62989320e28022a26f%') on node1 (cluster.py:3648, query) 2025-07-28 10:47:51.273000 [ 658 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%75ee3ae268ac4e62989320e28022a26f%') on node2 (cluster.py:3648, query) 2025-07-28 10:47:51.389000 [ 658 ] DEBUG : Executing query SELECT status FROM system.backups WHERE id='75ee3ae268ac4e62989320e28022a26f' on node2 (cluster.py:3648, query) 2025-07-28 10:47:51.505000 [ 658 ] DEBUG : Executing query SELECT error FROM system.backups WHERE id='75ee3ae268ac4e62989320e28022a26f' on node2 (cluster.py:3648, query) 2025-07-28 10:47:51.621000 [ 658 ] DEBUG : Executing query SYSTEM FLUSH LOGS on node2 (cluster.py:3648, query) 2025-07-28 10:47:51.838000 [ 658 ] DEBUG : Executing query SELECT status FROM system.backup_log WHERE id='75ee3ae268ac4e62989320e28022a26f' ORDER BY status on node2 (cluster.py:3648, query) 2025-07-28 10:47:51.954000 [ 658 ] DEBUG : Executing query SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups' AND NOT (name == 'alive_tracker') on node1 (cluster.py:3648, query) 2025-07-28 10:47:52.070000 [ 658 ] DEBUG : Executing query SELECT name FROM system.errors WHERE last_error_time >= toDateTime('2025-07-28 10:47:38') AND NOT ((name == 'KEEPER_EXCEPTION') AND (last_error_message LIKE '%Fault injection%')) AND NOT (name == 'NO_ELEMENTS_IN_CONFIG') on node1 (cluster.py:3648, query) 2025-07-28 10:47:52.185000 [ 658 ] DEBUG : Executing query SELECT name, last_error_message FROM system.errors WHERE last_error_time >= toDateTime('2025-07-28 10:47:38') on node1 (cluster.py:3648, query) ---------------------------- Captured log teardown ----------------------------- 2025-07-28 10:47:52.407000 [ 658 ] DEBUG : Executing query DROP TABLE IF EXISTS tbl ON CLUSTER 'cluster' SYNC on node1 (cluster.py:3648, query) 2025-07-28 10:47:52.623000 [ 658 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --project-name roottestbackuprestoreonclustercancelbackup-gw1 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/docker-compose.yml stop --timeout 20] (cluster.py:121, run_and_check) 2025-07-28 10:47:54.046000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 10:47:54.047000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 10:47:54.047000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 10:47:54.047000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 10:47:54.047000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 10:47:54.047000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 10:47:54.047000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 10:47:54.047000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 10:47:54.048000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 10:47:54.048000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 10:47:54.048000 [ 658 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-28 10:47:54.064000 [ 658 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-28 10:47:54.079000 [ 658 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --project-name roottestbackuprestoreonclustercancelbackup-gw1 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/docker-compose.yml down --volumes] (cluster.py:121, run_and_check) 2025-07-28 10:47:54.614000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 10:47:54.615000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 10:47:54.615000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 10:47:54.615000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Removing (cluster.py:147, run_and_check) 2025-07-28 10:47:54.615000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 10:47:54.615000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Removing (cluster.py:147, run_and_check) 2025-07-28 10:47:54.615000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Removed (cluster.py:147, run_and_check) 2025-07-28 10:47:54.615000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Removed (cluster.py:147, run_and_check) 2025-07-28 10:47:54.616000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 10:47:54.616000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 10:47:54.616000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 10:47:54.616000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 10:47:54.616000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Removing (cluster.py:147, run_and_check) 2025-07-28 10:47:54.616000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 10:47:54.616000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Removing (cluster.py:147, run_and_check) 2025-07-28 10:47:54.616000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 10:47:54.616000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Removing (cluster.py:147, run_and_check) 2025-07-28 10:47:54.617000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Removed (cluster.py:147, run_and_check) 2025-07-28 10:47:54.617000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Removed (cluster.py:147, run_and_check) 2025-07-28 10:47:54.617000 [ 658 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Removed (cluster.py:147, run_and_check) 2025-07-28 10:47:54.617000 [ 658 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup-gw1_default Removing (cluster.py:147, run_and_check) 2025-07-28 10:47:54.617000 [ 658 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup-gw1_default Removed (cluster.py:147, run_and_check) 2025-07-28 10:47:54.617000 [ 658 ] DEBUG : Cleanup called (cluster.py:851, cleanup) 2025-07-28 10:47:54.644000 [ 658 ] DEBUG : Docker networks for project roottestbackuprestoreonclustercancelbackup-gw1 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2025-07-28 10:47:54.673000 [ 658 ] DEBUG : Docker containers for project roottestbackuprestoreonclustercancelbackup-gw1 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2025-07-28 10:47:54.696000 [ 658 ] DEBUG : Docker volumes for project roottestbackuprestoreonclustercancelbackup-gw1 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2025-07-28 10:47:54.697000 [ 658 ] DEBUG : Command:[docker container list --all --filter name='^/roottestbackuprestoreonclustercancelbackup-gw1-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2025-07-28 10:47:54.724000 [ 658 ] DEBUG : Unstopped containers: {} (cluster.py:865, cleanup) 2025-07-28 10:47:54.725000 [ 658 ] DEBUG : No running containers for project: roottestbackuprestoreonclustercancelbackup-gw1 (cluster.py:879, cleanup) 2025-07-28 10:47:54.725000 [ 658 ] DEBUG : Trying to prune unused networks... (cluster.py:885, cleanup) 2025-07-28 10:47:54.748000 [ 658 ] DEBUG : Trying to prune unused images... (cluster.py:901, cleanup) 2025-07-28 10:47:54.749000 [ 658 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2025-07-28 10:47:54.789000 [ 658 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2025-07-28 10:47:54.789000 [ 658 ] DEBUG : Images pruned (cluster.py:904, cleanup) 2025-07-28 10:47:54.789000 [ 658 ] DEBUG : Trying to prune unused volumes... (cluster.py:910, cleanup) 2025-07-28 10:47:54.789000 [ 658 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2025-07-28 10:47:54.818000 [ 658 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-28 10:47:54.818000 [ 658 ] DEBUG : Volumes pruned: 1 (cluster.py:915, cleanup) ____________________ test_cow_policy[cow_policy_multi_disk] ____________________ [gw0] linux -- Python 3.10.12 /usr/bin/python3 start_cluster = storage_policy = 'cow_policy_multi_disk' @pytest.mark.parametrize("storage_policy", ["cow_policy_multi_disk", "cow_policy_multi_volume"]) def test_cow_policy(start_cluster, storage_policy): try: > node.query_with_retry( f""" ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = '{storage_policy}' """, timeout=60, retry_count=3, ) test_cow_policy/test.py:24: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = sql = "\n ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7'\n (\n ...R BY (postcode1, postcode2, addr1, addr2)\n SETTINGS storage_policy = 'cow_policy_multi_disk'\n " stdin = None, timeout = 60, settings = None, user = None, password = None database = None, host = None, ignore_error = False, retry_count = 3 sleep_time = 0.5 check_callback = at 0x7fc5a1150160> parse = False def query_with_retry( self, sql, stdin=None, timeout=None, settings=None, user=None, password=None, database=None, host=None, ignore_error=False, retry_count=20, sleep_time=0.5, check_callback=lambda x: True, parse=False, ): # logging.debug(f"Executing query {sql} on {self.name}") result = None exception_msg = "" for i in range(retry_count): try: result = self.query( sql, stdin=stdin, timeout=timeout, settings=settings, user=user, password=password, database=database, host=host, ignore_error=ignore_error, parse=parse, ) if check_callback(result): return result time.sleep(sleep_time) except QueryRuntimeException as ex: exception_msg = f"{type(ex).__name__}: {str(ex)}" # Container is down, this is likely due to server crash. if "No route to host" in str(ex): raise time.sleep(sleep_time) except Exception as ex: # logging.debug("Retry {} got exception {}".format(i + 1, ex)) exception_msg = f"{type(ex).__name__}: {str(ex)}" time.sleep(sleep_time) if result is not None: return result > raise Exception(f"Can't execute query {sql}\n{exception_msg}") E Exception: Can't execute query E ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' E ( E price UInt32, E date Date, E postcode1 LowCardinality(String), E postcode2 LowCardinality(String), E type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), E is_new UInt8, E duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), E addr1 String, E addr2 String, E street LowCardinality(String), E locality LowCardinality(String), E town LowCardinality(String), E district LowCardinality(String), E county LowCardinality(String) E ) E ENGINE = MergeTree E ORDER BY (postcode1, postcode2, addr1, addr2) E SETTINGS storage_policy = 'cow_policy_multi_disk' E E QueryRuntimeException: Client failed! Return code: 198, stderr: Received exception from server (version 25.3.6): E Code: 198. DB::Exception: Received from 172.16.1.2:9000. DB::NetException. DB::NetException: Not found address of host: raw.githubusercontent.com: while loading disk metadata. Stack trace: E E 0. DB::Exception::Exception(DB::Exception::MessageMasked&&, int, bool) @ 0x000000000f52449b E 1. DB::NetException::NetException(int, FormatStringHelperImpl::type>, String const&) @ 0x000000000f4f92e4 E 2. DB::(anonymous namespace)::hostByName(String const&) @ 0x000000000f4fae24 E 3. DB::DNSResolver::getResolvedIPAdressessWithFiltering(String const&) @ 0x000000000f4f8cd2 E 4. DB::DNSResolver::resolveIPAddressWithCache(String const&) @ 0x000000000f4f9e9a E 5. std::vector> std::__function::__policy_invoker> (String const&)>::__call_impl[abi:ne190107]> (String const&)>>(std::__function::__policy_storage const*, String const&) @ 0x000000000f8b6296 E 6. DB::HostResolver::update() @ 0x000000000f8b12cc E 7. DB::HostResolver::HostResolver(String, Poco::Timespan) @ 0x000000000f8b1169 E 8. std::shared_ptr DB::HostResolver::create(String const&)::make_shared_enabler::make_shared_enabler(String const&) @ 0x000000000f8b680d E 9. std::shared_ptr DB::HostResolver::create(String const&)::make_shared_enabler> std::allocate_shared[abi:ne190107] DB::HostResolver::create(String const&)::make_shared_enabler, std::allocator DB::HostResolver::create(String const&)::make_shared_enabler>, String const&, 0>(std::allocator DB::HostResolver::create(String const&)::make_shared_enabler> const&, String const&) @ 0x000000000f8b6672 E 10. DB::HostResolversPool::getResolver(String const&) @ 0x000000000f8b3173 E 11. DB::EndpointConnectionPool::getConnection(DB::ConnectionTimeouts const&, unsigned long*) @ 0x000000000f8a71d5 E 12. DB::makeHTTPSession(DB::HTTPConnectionGroupType, Poco::URI const&, DB::ConnectionTimeouts const&, DB::ProxyConfiguration const&, unsigned long*) @ 0x000000000f8c0216 E 13. DB::ReadWriteBufferFromHTTP::callImpl(Poco::Net::HTTPResponse&, String const&, std::optional const&, bool) const @ 0x000000001136ca7c E 14. DB::ReadWriteBufferFromHTTP::callWithRedirects(Poco::Net::HTTPResponse&, String const&, std::optional const&) @ 0x000000001136ceba E 15. void std::__function::__policy_invoker::__call_impl[abi:ne190107]>(std::__function::__policy_storage const*) @ 0x00000000113710cc E 16. DB::ReadWriteBufferFromHTTP::doWithRetries(std::function&&, std::function, bool) const @ 0x000000001136a1db E 17. DB::ReadWriteBufferFromHTTP::nextImpl() @ 0x000000001136ed3f E 18. DB::WebObjectStorage::loadFiles(String const&, std::unique_lock const&) const @ 0x0000000012c8fca5 E 19. DB::WebObjectStorage::tryGetFileInfo(String const&) const @ 0x0000000012c938a3 E 20. DB::WebObjectStorage::tryGetFileInfo(String const&) const @ 0x0000000012c93467 E 21. DB::MetadataStorageFromStaticFilesWebServer::getStorageObjectsIfExist(String const&) const @ 0x0000000012c8d49e E 22. DB::DiskObjectStorage::readFileIfExists(String const&, DB::ReadSettings const&, std::optional, std::optional) const @ 0x0000000012c24f30 E 23. DB::MergeTreeData::initializeDirectoriesAndFormatVersion(String const&, bool, String const&, bool) @ 0x000000001463fd06 E 24. DB::StorageMergeTree::StorageMergeTree(DB::StorageID const&, String const&, DB::StorageInMemoryMetadata const&, DB::LoadingStrictnessLevel, std::shared_ptr, String const&, DB::MergeTreeData::MergingParams const&, std::unique_ptr>) @ 0x0000000014a08dc8 E 25. DB::create(DB::StorageFactory::Arguments const&) @ 0x0000000014a0556c E 26. DB::StorageFactory::get(DB::ASTCreateQuery const&, String const&, std::shared_ptr, std::shared_ptr, DB::ColumnsDescription const&, DB::ConstraintsDescription const&, DB::LoadingStrictnessLevel, bool) const @ 0x000000001400d9bb E 27. DB::InterpreterCreateQuery::doCreateTable(DB::ASTCreateQuery&, DB::InterpreterCreateQuery::TableProperties const&, std::unique_ptr>&, DB::LoadingStrictnessLevel) @ 0x00000000135c6800 E 28. DB::InterpreterCreateQuery::createTable(DB::ASTCreateQuery&) @ 0x00000000135bb3a2 E 29. DB::InterpreterCreateQuery::execute() @ 0x00000000135cea18 E 30. DB::executeQueryImpl(char const*, char const*, std::shared_ptr, DB::QueryFlags, DB::QueryProcessingStage::Enum, DB::ReadBuffer*, std::shared_ptr&) @ 0x00000000139f96ab E 31. DB::executeQuery(String const&, std::shared_ptr, DB::QueryFlags, DB::QueryProcessingStage::Enum) @ 0x00000000139f40c4 E . (DNS_ERROR) E (query: ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' E ( E price UInt32, E date Date, E postcode1 LowCardinality(String), E postcode2 LowCardinality(String), E type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), E is_new UInt8, E duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), E addr1 String, E addr2 String, E street LowCardinality(String), E locality LowCardinality(String), E town LowCardinality(String), E district LowCardinality(String), E county LowCardinality(String) E ) E ENGINE = MergeTree E ORDER BY (postcode1, postcode2, addr1, addr2) E SETTINGS storage_policy = 'cow_policy_multi_disk' E ) helpers/cluster.py:3712: Exception ---------------------------- Captured stdout setup ----------------------------- Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml ------------------------------ Captured log setup ------------------------------ 2025-07-28 10:47:20.165000 [ 655 ] DEBUG : Command:[docker ps | wc -l] (cluster.py:121, run_and_check) 2025-07-28 10:47:20.194000 [ 655 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-28 10:47:20.194000 [ 655 ] DEBUG : No running containers (conftest.py:95, cleanup_environment) 2025-07-28 10:47:20.195000 [ 655 ] DEBUG : Pruning Docker networks (conftest.py:97, cleanup_environment) 2025-07-28 10:47:20.195000 [ 655 ] DEBUG : Command:[docker network prune --force] (cluster.py:121, run_and_check) 2025-07-28 10:47:20.224000 [ 655 ] DEBUG : Command:[sysctl net.ipv4.ip_local_port_range='55000 65535'] (cluster.py:121, run_and_check) 2025-07-28 10:47:20.227000 [ 655 ] DEBUG : Stdout:net.ipv4.ip_local_port_range = 55000 65535 (cluster.py:145, run_and_check) 2025-07-28 10:47:20.228000 [ 655 ] INFO : Running tests in /ClickHouse/tests/integration/test_cow_policy/test.py (cluster.py:2738, start) 2025-07-28 10:47:20.228000 [ 655 ] DEBUG : Cluster start called. is_up=False (cluster.py:2745, start) 2025-07-28 10:47:20.258000 [ 655 ] DEBUG : Docker networks for project roottestcowpolicy-gw0 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2025-07-28 10:47:20.287000 [ 655 ] DEBUG : Docker containers for project roottestcowpolicy-gw0 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2025-07-28 10:47:20.317000 [ 655 ] DEBUG : Docker volumes for project roottestcowpolicy-gw0 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2025-07-28 10:47:20.317000 [ 655 ] DEBUG : Cleanup called (cluster.py:851, cleanup) 2025-07-28 10:47:20.347000 [ 655 ] DEBUG : Docker networks for project roottestcowpolicy-gw0 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2025-07-28 10:47:20.375000 [ 655 ] DEBUG : Docker containers for project roottestcowpolicy-gw0 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2025-07-28 10:47:20.404000 [ 655 ] DEBUG : Docker volumes for project roottestcowpolicy-gw0 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2025-07-28 10:47:20.404000 [ 655 ] DEBUG : Command:[docker container list --all --filter name='^/roottestcowpolicy-gw0-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2025-07-28 10:47:20.432000 [ 655 ] DEBUG : Unstopped containers: {} (cluster.py:865, cleanup) 2025-07-28 10:47:20.432000 [ 655 ] DEBUG : No running containers for project: roottestcowpolicy-gw0 (cluster.py:879, cleanup) 2025-07-28 10:47:20.432000 [ 655 ] DEBUG : Trying to prune unused networks... (cluster.py:885, cleanup) 2025-07-28 10:47:20.460000 [ 655 ] DEBUG : Trying to prune unused images... (cluster.py:901, cleanup) 2025-07-28 10:47:20.460000 [ 655 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2025-07-28 10:47:20.487000 [ 655 ] DEBUG : Stderr:Error response from daemon: a prune operation is already running (cluster.py:147, run_and_check) 2025-07-28 10:47:20.487000 [ 655 ] DEBUG : Exitcode:1 (cluster.py:149, run_and_check) 2025-07-28 10:47:20.487000 [ 655 ] DEBUG : Trying to prune unused volumes... (cluster.py:910, cleanup) 2025-07-28 10:47:20.487000 [ 655 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2025-07-28 10:47:20.508000 [ 655 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-28 10:47:20.508000 [ 655 ] DEBUG : Volumes pruned: 1 (cluster.py:915, cleanup) 2025-07-28 10:47:20.508000 [ 655 ] DEBUG : Setup directory for instance: node (cluster.py:2758, start) 2025-07-28 10:47:20.509000 [ 655 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4628, create_dir) 2025-07-28 10:47:20.509000 [ 655 ] DEBUG : Create directory for common tests configuration (cluster.py:4633, create_dir) 2025-07-28 10:47:20.509000 [ 655 ] DEBUG : Copy common configuration from helpers (cluster.py:4653, create_dir) 2025-07-28 10:47:20.510000 [ 655 ] DEBUG : Generate and write macros file (cluster.py:4705, create_dir) 2025-07-28 10:47:20.510000 [ 655 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_cow_policy/configs/overrides.yaml'] to /ClickHouse/tests/integration/test_cow_policy/_instances-1-gw0/node/configs/config.d (cluster.py:4741, create_dir) 2025-07-28 10:47:20.510000 [ 655 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_cow_policy/_instances-1-gw0/node/database (cluster.py:4758, create_dir) 2025-07-28 10:47:20.510000 [ 655 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_cow_policy/_instances-1-gw0/node/logs (cluster.py:4769, create_dir) 2025-07-28 10:47:20.510000 [ 655 ] DEBUG : Entrypoint cmd: ["clickhouse", "server", "--config-file=/etc/clickhouse-server/config.xml", "--log-file=/var/log/clickhouse-server/clickhouse-server.log", "--errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log", "--"] (cluster.py:4850, create_dir) 2025-07-28 10:47:20.511000 [ 655 ] DEBUG : Env {'ASAN_OPTIONS': 'use_sigaltstack=0', 'TSAN_OPTIONS': 'use_sigaltstack=0', 'CLICKHOUSE_WATCHDOG_ENABLE': '0', 'CLICKHOUSE_NATS_TLS_SECURE': '0', 'LLVM_PROFILE_FILE': '/var/lib/clickhouse/server_%h_%p_%m.profraw'} stored in /ClickHouse/tests/integration/test_cow_policy/_instances-1-gw0/.env (cluster.py:96, _create_env_file) 2025-07-28 10:47:20.511000 [ 655 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-07-28 10:47:20.511000 [ 655 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-07-28 10:47:20.511000 [ 655 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-07-28 10:47:20.511000 [ 655 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-07-28 10:47:20.522000 [ 655 ] DEBUG : http://localhost:None "GET /version HTTP/1.1" 200 826 (connectionpool.py:547, _make_request) 2025-07-28 10:47:20.522000 [ 655 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_cow_policy/_instances-1-gw0/.env --project-name roottestcowpolicy-gw0 --file /ClickHouse/tests/integration/test_cow_policy/_instances-1-gw0/node/docker-compose.yml pull] (cluster.py:121, run_and_check) 2025-07-28 10:47:30.980000 [ 655 ] DEBUG : Stderr: node Pulling (cluster.py:147, run_and_check) 2025-07-28 10:47:30.981000 [ 655 ] DEBUG : Stderr: node Pulled (cluster.py:147, run_and_check) 2025-07-28 10:47:30.981000 [ 655 ] DEBUG : ('Trying to create ClickHouse instance by command %s', 'docker compose --env-file /ClickHouse/tests/integration/test_cow_policy/_instances-1-gw0/.env --project-name roottestcowpolicy-gw0 --file /ClickHouse/tests/integration/test_cow_policy/_instances-1-gw0/node/docker-compose.yml up -d --no-recreate') (cluster.py:3139, start) 2025-07-28 10:47:30.981000 [ 655 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_cow_policy/_instances-1-gw0/.env --project-name roottestcowpolicy-gw0 --file /ClickHouse/tests/integration/test_cow_policy/_instances-1-gw0/node/docker-compose.yml up -d --no-recreate] (cluster.py:121, run_and_check) 2025-07-28 10:47:31.534000 [ 655 ] DEBUG : Stderr: Network roottestcowpolicy-gw0_default Creating (cluster.py:147, run_and_check) 2025-07-28 10:47:31.535000 [ 655 ] DEBUG : Stderr: Network roottestcowpolicy-gw0_default Created (cluster.py:147, run_and_check) 2025-07-28 10:47:31.535000 [ 655 ] DEBUG : Stderr: Container roottestcowpolicy-gw0-node-1 Creating (cluster.py:147, run_and_check) 2025-07-28 10:47:31.535000 [ 655 ] DEBUG : Stderr: Container roottestcowpolicy-gw0-node-1 Created (cluster.py:147, run_and_check) 2025-07-28 10:47:31.535000 [ 655 ] DEBUG : Stderr: Container roottestcowpolicy-gw0-node-1 Starting (cluster.py:147, run_and_check) 2025-07-28 10:47:31.535000 [ 655 ] DEBUG : Stderr: Container roottestcowpolicy-gw0-node-1 Started (cluster.py:147, run_and_check) 2025-07-28 10:47:31.535000 [ 655 ] DEBUG : ClickHouse instance created (cluster.py:3147, start) 2025-07-28 10:47:31.536000 [ 655 ] DEBUG : get_instance_ip instance_name=node (cluster.py:2005, get_instance_ip) 2025-07-28 10:47:31.539000 [ 655 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestcowpolicy-gw0-node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:31.539000 [ 655 ] DEBUG : get_instance_ip instance_name=node (cluster.py:2015, get_instance_global_ipv6) 2025-07-28 10:47:31.542000 [ 655 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestcowpolicy-gw0-node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:31.542000 [ 655 ] DEBUG : Waiting for ClickHouse start in node, ip: 172.16.1.2... (cluster.py:3155, start) 2025-07-28 10:47:31.545000 [ 655 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestcowpolicy-gw0-node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:31.549000 [ 655 ] DEBUG : http://localhost:None "GET /v1.46/containers/570c98cf503e7a45970a8e068e8882db98e0071e55e12dc3d0a1af5ad94a8d83/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:31.653000 [ 655 ] DEBUG : http://localhost:None "GET /v1.46/containers/570c98cf503e7a45970a8e068e8882db98e0071e55e12dc3d0a1af5ad94a8d83/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:31.757000 [ 655 ] DEBUG : http://localhost:None "GET /v1.46/containers/570c98cf503e7a45970a8e068e8882db98e0071e55e12dc3d0a1af5ad94a8d83/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:31.861000 [ 655 ] DEBUG : http://localhost:None "GET /v1.46/containers/570c98cf503e7a45970a8e068e8882db98e0071e55e12dc3d0a1af5ad94a8d83/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:31.965000 [ 655 ] DEBUG : http://localhost:None "GET /v1.46/containers/570c98cf503e7a45970a8e068e8882db98e0071e55e12dc3d0a1af5ad94a8d83/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:32.068000 [ 655 ] DEBUG : http://localhost:None "GET /v1.46/containers/570c98cf503e7a45970a8e068e8882db98e0071e55e12dc3d0a1af5ad94a8d83/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:47:32.069000 [ 655 ] DEBUG : ClickHouse node started (cluster.py:3159, start) ------------------------------ Captured log call ------------------------------- 2025-07-28 10:47:32.073000 [ 655 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3648, query) 2025-07-28 10:48:25.817000 [ 655 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3648, query) 2025-07-28 10:49:20.420000 [ 655 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_disk' on node (cluster.py:3648, query) 2025-07-28 10:50:15.627000 [ 655 ] DEBUG : Executing query DROP TABLE IF EXISTS uk_price_paid SYNC on node (cluster.py:3648, query) ___________________ test_cow_policy[cow_policy_multi_volume] ___________________ [gw0] linux -- Python 3.10.12 /usr/bin/python3 start_cluster = storage_policy = 'cow_policy_multi_volume' @pytest.mark.parametrize("storage_policy", ["cow_policy_multi_disk", "cow_policy_multi_volume"]) def test_cow_policy(start_cluster, storage_policy): try: > node.query_with_retry( f""" ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = '{storage_policy}' """, timeout=60, retry_count=3, ) test_cow_policy/test.py:24: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = sql = "\n ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7'\n (\n ...BY (postcode1, postcode2, addr1, addr2)\n SETTINGS storage_policy = 'cow_policy_multi_volume'\n " stdin = None, timeout = 60, settings = None, user = None, password = None database = None, host = None, ignore_error = False, retry_count = 3 sleep_time = 0.5 check_callback = at 0x7fc5a1150160> parse = False def query_with_retry( self, sql, stdin=None, timeout=None, settings=None, user=None, password=None, database=None, host=None, ignore_error=False, retry_count=20, sleep_time=0.5, check_callback=lambda x: True, parse=False, ): # logging.debug(f"Executing query {sql} on {self.name}") result = None exception_msg = "" for i in range(retry_count): try: result = self.query( sql, stdin=stdin, timeout=timeout, settings=settings, user=user, password=password, database=database, host=host, ignore_error=ignore_error, parse=parse, ) if check_callback(result): return result time.sleep(sleep_time) except QueryRuntimeException as ex: exception_msg = f"{type(ex).__name__}: {str(ex)}" # Container is down, this is likely due to server crash. if "No route to host" in str(ex): raise time.sleep(sleep_time) except Exception as ex: # logging.debug("Retry {} got exception {}".format(i + 1, ex)) exception_msg = f"{type(ex).__name__}: {str(ex)}" time.sleep(sleep_time) if result is not None: return result > raise Exception(f"Can't execute query {sql}\n{exception_msg}") E Exception: Can't execute query E ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' E ( E price UInt32, E date Date, E postcode1 LowCardinality(String), E postcode2 LowCardinality(String), E type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), E is_new UInt8, E duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), E addr1 String, E addr2 String, E street LowCardinality(String), E locality LowCardinality(String), E town LowCardinality(String), E district LowCardinality(String), E county LowCardinality(String) E ) E ENGINE = MergeTree E ORDER BY (postcode1, postcode2, addr1, addr2) E SETTINGS storage_policy = 'cow_policy_multi_volume' E E QueryRuntimeException: Client failed! Return code: 198, stderr: Received exception from server (version 25.3.6): E Code: 198. DB::Exception: Received from 172.16.1.2:9000. DB::NetException. DB::NetException: Not found address of host: raw.githubusercontent.com: while loading disk metadata. Stack trace: E E 0. DB::Exception::Exception(DB::Exception::MessageMasked&&, int, bool) @ 0x000000000f52449b E 1. DB::NetException::NetException(int, FormatStringHelperImpl::type>, String const&) @ 0x000000000f4f92e4 E 2. DB::(anonymous namespace)::hostByName(String const&) @ 0x000000000f4fae24 E 3. DB::DNSResolver::getResolvedIPAdressessWithFiltering(String const&) @ 0x000000000f4f8cd2 E 4. DB::DNSResolver::resolveIPAddressWithCache(String const&) @ 0x000000000f4f9e9a E 5. std::vector> std::__function::__policy_invoker> (String const&)>::__call_impl[abi:ne190107]> (String const&)>>(std::__function::__policy_storage const*, String const&) @ 0x000000000f8b6296 E 6. DB::HostResolver::update() @ 0x000000000f8b12cc E 7. DB::HostResolver::HostResolver(String, Poco::Timespan) @ 0x000000000f8b1169 E 8. std::shared_ptr DB::HostResolver::create(String const&)::make_shared_enabler::make_shared_enabler(String const&) @ 0x000000000f8b680d E 9. std::shared_ptr DB::HostResolver::create(String const&)::make_shared_enabler> std::allocate_shared[abi:ne190107] DB::HostResolver::create(String const&)::make_shared_enabler, std::allocator DB::HostResolver::create(String const&)::make_shared_enabler>, String const&, 0>(std::allocator DB::HostResolver::create(String const&)::make_shared_enabler> const&, String const&) @ 0x000000000f8b6672 E 10. DB::HostResolversPool::getResolver(String const&) @ 0x000000000f8b3173 E 11. DB::EndpointConnectionPool::getConnection(DB::ConnectionTimeouts const&, unsigned long*) @ 0x000000000f8a71d5 E 12. DB::makeHTTPSession(DB::HTTPConnectionGroupType, Poco::URI const&, DB::ConnectionTimeouts const&, DB::ProxyConfiguration const&, unsigned long*) @ 0x000000000f8c0216 E 13. DB::ReadWriteBufferFromHTTP::callImpl(Poco::Net::HTTPResponse&, String const&, std::optional const&, bool) const @ 0x000000001136ca7c E 14. DB::ReadWriteBufferFromHTTP::callWithRedirects(Poco::Net::HTTPResponse&, String const&, std::optional const&) @ 0x000000001136ceba E 15. void std::__function::__policy_invoker::__call_impl[abi:ne190107]>(std::__function::__policy_storage const*) @ 0x00000000113710cc E 16. DB::ReadWriteBufferFromHTTP::doWithRetries(std::function&&, std::function, bool) const @ 0x000000001136a1db E 17. DB::ReadWriteBufferFromHTTP::nextImpl() @ 0x000000001136ed3f E 18. DB::WebObjectStorage::loadFiles(String const&, std::unique_lock const&) const @ 0x0000000012c8fca5 E 19. DB::WebObjectStorage::tryGetFileInfo(String const&) const @ 0x0000000012c938a3 E 20. DB::WebObjectStorage::tryGetFileInfo(String const&) const @ 0x0000000012c93467 E 21. DB::MetadataStorageFromStaticFilesWebServer::getStorageObjectsIfExist(String const&) const @ 0x0000000012c8d49e E 22. DB::DiskObjectStorage::readFileIfExists(String const&, DB::ReadSettings const&, std::optional, std::optional) const @ 0x0000000012c24f30 E 23. DB::MergeTreeData::initializeDirectoriesAndFormatVersion(String const&, bool, String const&, bool) @ 0x000000001463fd06 E 24. DB::StorageMergeTree::StorageMergeTree(DB::StorageID const&, String const&, DB::StorageInMemoryMetadata const&, DB::LoadingStrictnessLevel, std::shared_ptr, String const&, DB::MergeTreeData::MergingParams const&, std::unique_ptr>) @ 0x0000000014a08dc8 E 25. DB::create(DB::StorageFactory::Arguments const&) @ 0x0000000014a0556c E 26. DB::StorageFactory::get(DB::ASTCreateQuery const&, String const&, std::shared_ptr, std::shared_ptr, DB::ColumnsDescription const&, DB::ConstraintsDescription const&, DB::LoadingStrictnessLevel, bool) const @ 0x000000001400d9bb E 27. DB::InterpreterCreateQuery::doCreateTable(DB::ASTCreateQuery&, DB::InterpreterCreateQuery::TableProperties const&, std::unique_ptr>&, DB::LoadingStrictnessLevel) @ 0x00000000135c6800 E 28. DB::InterpreterCreateQuery::createTable(DB::ASTCreateQuery&) @ 0x00000000135bb3a2 E 29. DB::InterpreterCreateQuery::execute() @ 0x00000000135cea18 E 30. DB::executeQueryImpl(char const*, char const*, std::shared_ptr, DB::QueryFlags, DB::QueryProcessingStage::Enum, DB::ReadBuffer*, std::shared_ptr&) @ 0x00000000139f96ab E 31. DB::executeQuery(String const&, std::shared_ptr, DB::QueryFlags, DB::QueryProcessingStage::Enum) @ 0x00000000139f40c4 E . (DNS_ERROR) E (query: ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' E ( E price UInt32, E date Date, E postcode1 LowCardinality(String), E postcode2 LowCardinality(String), E type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), E is_new UInt8, E duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), E addr1 String, E addr2 String, E street LowCardinality(String), E locality LowCardinality(String), E town LowCardinality(String), E district LowCardinality(String), E county LowCardinality(String) E ) E ENGINE = MergeTree E ORDER BY (postcode1, postcode2, addr1, addr2) E SETTINGS storage_policy = 'cow_policy_multi_volume' E ) helpers/cluster.py:3712: Exception ------------------------------ Captured log call ------------------------------- 2025-07-28 10:50:15.958000 [ 655 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3648, query) 2025-07-28 10:51:12.865000 [ 655 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3648, query) 2025-07-28 10:52:10.480000 [ 655 ] DEBUG : Executing query ATTACH TABLE uk_price_paid UUID 'cf712b4f-2ca8-435c-ac23-c4393efe52f7' ( price UInt32, date Date, postcode1 LowCardinality(String), postcode2 LowCardinality(String), type Enum8('other' = 0, 'terraced' = 1, 'semi-detached' = 2, 'detached' = 3, 'flat' = 4), is_new UInt8, duration Enum8('unknown' = 0, 'freehold' = 1, 'leasehold' = 2), addr1 String, addr2 String, street LowCardinality(String), locality LowCardinality(String), town LowCardinality(String), district LowCardinality(String), county LowCardinality(String) ) ENGINE = MergeTree ORDER BY (postcode1, postcode2, addr1, addr2) SETTINGS storage_policy = 'cow_policy_multi_volume' on node (cluster.py:3648, query) 2025-07-28 10:53:05.088000 [ 655 ] DEBUG : Executing query DROP TABLE IF EXISTS uk_price_paid SYNC on node (cluster.py:3648, query) ---------------------------- Captured log teardown ----------------------------- 2025-07-28 10:53:05.297000 [ 655 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_cow_policy/_instances-1-gw0/.env --project-name roottestcowpolicy-gw0 --file /ClickHouse/tests/integration/test_cow_policy/_instances-1-gw0/node/docker-compose.yml stop --timeout 20] (cluster.py:121, run_and_check) 2025-07-28 10:53:11.569000 [ 655 ] DEBUG : Stderr: Container roottestcowpolicy-gw0-node-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 10:53:11.569000 [ 655 ] DEBUG : Stderr: Container roottestcowpolicy-gw0-node-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 10:53:11.569000 [ 655 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_cow_policy/_instances-1-gw0/node/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_cow_policy/_instances-1-gw0/node/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-28 10:53:11.586000 [ 655 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_cow_policy/_instances-1-gw0/.env --project-name roottestcowpolicy-gw0 --file /ClickHouse/tests/integration/test_cow_policy/_instances-1-gw0/node/docker-compose.yml down --volumes] (cluster.py:121, run_and_check) 2025-07-28 10:53:12.074000 [ 655 ] DEBUG : Stderr: Container roottestcowpolicy-gw0-node-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 10:53:12.074000 [ 655 ] DEBUG : Stderr: Container roottestcowpolicy-gw0-node-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 10:53:12.075000 [ 655 ] DEBUG : Stderr: Container roottestcowpolicy-gw0-node-1 Removing (cluster.py:147, run_and_check) 2025-07-28 10:53:12.075000 [ 655 ] DEBUG : Stderr: Container roottestcowpolicy-gw0-node-1 Removed (cluster.py:147, run_and_check) 2025-07-28 10:53:12.075000 [ 655 ] DEBUG : Stderr: Network roottestcowpolicy-gw0_default Removing (cluster.py:147, run_and_check) 2025-07-28 10:53:12.075000 [ 655 ] DEBUG : Stderr: Network roottestcowpolicy-gw0_default Removed (cluster.py:147, run_and_check) 2025-07-28 10:53:12.075000 [ 655 ] DEBUG : Cleanup called (cluster.py:851, cleanup) 2025-07-28 10:53:12.103000 [ 655 ] DEBUG : Docker networks for project roottestcowpolicy-gw0 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2025-07-28 10:53:12.132000 [ 655 ] DEBUG : Docker containers for project roottestcowpolicy-gw0 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2025-07-28 10:53:12.160000 [ 655 ] DEBUG : Docker volumes for project roottestcowpolicy-gw0 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2025-07-28 10:53:12.161000 [ 655 ] DEBUG : Command:[docker container list --all --filter name='^/roottestcowpolicy-gw0-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2025-07-28 10:53:12.188000 [ 655 ] DEBUG : Unstopped containers: {} (cluster.py:865, cleanup) 2025-07-28 10:53:12.188000 [ 655 ] DEBUG : No running containers for project: roottestcowpolicy-gw0 (cluster.py:879, cleanup) 2025-07-28 10:53:12.188000 [ 655 ] DEBUG : Trying to prune unused networks... (cluster.py:885, cleanup) 2025-07-28 10:53:12.216000 [ 655 ] DEBUG : Trying to prune unused images... (cluster.py:901, cleanup) 2025-07-28 10:53:12.216000 [ 655 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2025-07-28 10:53:12.259000 [ 655 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2025-07-28 10:53:12.259000 [ 655 ] DEBUG : Images pruned (cluster.py:904, cleanup) 2025-07-28 10:53:12.260000 [ 655 ] DEBUG : Trying to prune unused volumes... (cluster.py:910, cleanup) 2025-07-28 10:53:12.260000 [ 655 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2025-07-28 10:53:12.288000 [ 655 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-28 10:53:12.288000 [ 655 ] DEBUG : Volumes pruned: 1 (cluster.py:915, cleanup) ----------------- generated report log file: parallel0_1.jsonl ----------------- ============================== slowest durations =============================== 169.25s call test_cow_policy/test.py::test_cow_policy[cow_policy_multi_volume] 163.67s call test_cow_policy/test.py::test_cow_policy[cow_policy_multi_disk] 17.50s setup test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup 14.64s call test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup 11.91s setup test_cow_policy/test.py::test_cow_policy[cow_policy_multi_disk] 6.99s teardown test_cow_policy/test.py::test_cow_policy[cow_policy_multi_volume] 2.41s teardown test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup 0.00s teardown test_cow_policy/test.py::test_cow_policy[cow_policy_multi_disk] 0.00s setup test_cow_policy/test.py::test_cow_policy[cow_policy_multi_volume] =========================== short test summary info ============================ FAILED test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup FAILED test_cow_policy/test.py::test_cow_policy[cow_policy_multi_disk] - Exce... FAILED test_cow_policy/test.py::test_cow_policy[cow_policy_multi_volume] - Ex... ======================== 3 failed in 354.28s (0:05:54) ========================= Traceback (most recent call last): File "/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration/./runner", line 492, in subprocess.check_call(cmd, shell=True, bufsize=0) File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'docker run --rm --name clickhouse_integration_tests_mtr0pn --privileged --dns-search='.' --memory=30709030912 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel0_1.jsonl --report-log-exclude-logs-on-passed-tests test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup 'test_cow_policy/test.py::test_cow_policy[cow_policy_multi_disk]' 'test_cow_policy/test.py::test_cow_policy[cow_policy_multi_volume]' -vvv " altinityinfra/integration-tests-runner:226bfaf75ac1 ' returned non-zero exit status 1.